Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly
[dragonfly.git] / gnu / lib / gcc34 / libstdc++ / c++config.h
1 /* $DragonFly: src/gnu/lib/gcc34/libstdc++/c++config.h,v 1.3 2005/12/30 16:57:42 joerg Exp $ */
2
3 // Predefined symbols and macros -*- C++ -*-
4
5 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
6 // Free Software Foundation, Inc.
7 //
8 // This file is part of the GNU ISO C++ Library.  This library is free
9 // software; you can redistribute it and/or modify it under the
10 // terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 2, or (at your option)
12 // any later version.
13
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING.  If not, write to the Free
21 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 // USA.
23
24 // As a special exception, you may use this file as part of a free software
25 // library without restriction.  Specifically, if other files instantiate
26 // templates or use macros or inline functions from this file, or you compile
27 // this file and link it with other files to produce an executable, this
28 // file does not by itself cause the resulting executable to be covered by
29 // the GNU General Public License.  This exception does not however
30 // invalidate any other reasons why the executable file might be covered by
31 // the GNU General Public License.
32
33 #ifndef _CXXCONFIG
34 #define _CXXCONFIG 1
35
36 // Pick up any OS-specific definitions.
37 #include <bits/os_defines.h>
38
39 // The current version of the C++ library in compressed ISO date format.
40 #define __GLIBCXX__ 20050802
41
42 // Allow use of "export template." This is currently not a feature
43 // that g++ supports.
44 // #define _GLIBCXX_EXPORT_TEMPLATE 1
45
46 // Allow use of the GNU syntax extension, "extern template." This
47 // extension is fully documented in the g++ manual, but in a nutshell,
48 // it inhibits all implicit instantiations and is used throughout the
49 // library to avoid multiple weak definitions for required types that
50 // are already explicitly instantiated in the library binary. This
51 // substantially reduces the binary size of resulting executables.
52 #ifndef _GLIBCXX_EXTERN_TEMPLATE
53 # define _GLIBCXX_EXTERN_TEMPLATE 1
54 #endif
55
56 // Debug mode support. Debug mode basic_string is not allowed to be
57 // associated with std, because of locale and exception link
58 // dependence.
59 namespace __gnu_debug_def { }
60
61 namespace __gnu_debug 
62
63   using namespace __gnu_debug_def;
64 }
65
66 #ifdef _GLIBCXX_DEBUG
67 # define _GLIBCXX_STD __gnu_norm
68 namespace __gnu_norm 
69
70   using namespace std; 
71 }
72 namespace std
73 {
74   using namespace __gnu_debug_def __attribute__ ((strong));
75 }
76 #else
77 # define _GLIBCXX_STD std
78 #endif
79
80
81 // The remainder of the prewritten config is automatic; all the
82 // user hooks are listed above.
83
84 // Create a boolean flag to be used to determine if --fast-math is set.
85 #ifdef __FAST_MATH__
86 # define _GLIBCXX_FAST_MATH 1
87 #else
88 # define _GLIBCXX_FAST_MATH 0
89 #endif
90
91 // This marks string literals in header files to be extracted for eventual
92 // translation.  It is primarily used for messages in thrown exceptions; see
93 // src/functexcept.cc.  We use __N because the more traditional _N is used
94 // for something else under certain OSes (see BADNAMES).
95 #define __N(msgid)     (msgid)
96
97 // End of prewritten config; the discovered settings follow.
98 /* config.h.  Generated by configure.  */
99 /* config.h.in.  Generated from configure.ac by autoheader.  */
100 // acconfig.h symbols and macros for libstdc++ v3 -*- C++ -*-
101
102 // Defines libstdc++ version.
103 /* #undef _GLIBCXX_PACKAGE */
104 /* #undef _GLIBCXX_VERSION */
105
106 // Needed for gettext.
107 /* #undef ENABLE_NLS */
108 /* #undef _GLIBCXX_HAVE_CATGETS */
109 /* #undef _GLIBCXX_HAVE_GETTEXT */
110 /* #undef _GLIBCXX_HAVE_STPCPY */
111
112 // Include I/O support for 'long long' and 'unsigned long long'.
113 #define _GLIBCXX_USE_LONG_LONG 1
114
115 // Include support for 'long double'.
116 /* #undef _GLIBCXX_USE_LONG_DOUBLE */
117
118 // Define if C99 math functions (like fpclassify) should be exposed.
119 #define _GLIBCXX_USE_C99_MATH 1
120
121 // Define if C99 features such as lldiv_t, llabs, lldiv should be exposed.
122 /* #undef _GLIBCXX_USE_C99 */
123
124 // Define if code specialized for wchar_t should be used.
125 #define _GLIBCXX_USE_WCHAR_T 1
126
127 // Define if using setrlimit to set resource limits during 'make check'.
128 #define _GLIBCXX_RES_LIMITS 1
129
130 // Define to use concept checking code from the boost libraries.
131 /* #undef _GLIBCXX_CONCEPT_CHECKS */
132
133 // Define to use symbol versioning in the shared library.
134 /* #undef _GLIBCXX_SYMVER */
135
136 // Define symbol versioning in assember directives. If symbol
137 // versioning is beigng used, and the assembler supports this kind of
138 // thing, then use it.
139 // NB: _GLIBCXX_AT_AT is a hack to work around quoting issues in m4.
140 #if _GLIBCXX_SYMVER
141   #define _GLIBCXX_ASM_SYMVER(cur, old, version) \
142    asm (".symver " #cur "," #old _GLIBCXX_AT_AT #version);
143 #else
144   #define _GLIBCXX_ASM_SYMVER(cur, old, version)
145 #endif
146
147 // Define if LFS support is available.
148 /* #undef _GLIBCXX_USE_LFS */
149
150 // Define if a fully dynamic basic_string is wanted.
151 /* #undef _GLIBCXX_FULLY_DYNAMIC_STRING */
152
153 // Define if NLS translations are to be used.
154 /* #undef _GLIBCXX_USE_NLS */
155
156 // Define if gthr-default.h exists (meaning that threading support is enabled).
157 #define _GLIBCXX_HAVE_GTHR_DEFAULT 1
158
159 // Define if the atan2f function exists.
160 #define _GLIBCXX_HAVE_ATAN2F 1
161
162 // Define if the atan2l function exists.
163 /* #undef _GLIBCXX_HAVE_ATAN2L */
164
165 // Define if the tanl function exists.
166 /* #undef _GLIBCXX_HAVE_TANL */
167
168 // Define if the copysignf function exists.
169 #define _GLIBCXX_HAVE_COPYSIGNF 1
170
171 // Define if getpagesize exists.
172 #define _GLIBCXX_HAVE_GETPAGESIZE 1
173
174 // Define if setenv exists.
175 #define _GLIBCXX_HAVE_SETENV 1
176
177 // Define if sigsetjmp exists.
178 #define _GLIBCXX_HAVE_SIGSETJMP 1
179
180 // Define if mbstate_t exists in wchar.h.
181 #define _GLIBCXX_HAVE_MBSTATE_T 1
182
183 // Define if you have the modff function.
184 #define _GLIBCXX_HAVE_MODFF 1
185
186 // Define if you have the modfl function.
187 /* #undef _GLIBCXX_HAVE_MODFL */
188
189 // Define if you have the expf function.
190 #define _GLIBCXX_HAVE_EXPF 1
191
192 // Define if you have the expl function.
193 /* #undef _GLIBCXX_HAVE_EXPL */
194
195 // Define if you have the hypot function.
196 #define _GLIBCXX_HAVE_HYPOT 1
197
198 // Define if you have the hypotf function.
199 #define _GLIBCXX_HAVE_HYPOTF 1
200
201 // Define if you have the hypotl function.
202 /* #undef _GLIBCXX_HAVE_HYPOTL */
203
204 // Define if the compiler/host combination has __builtin_abs
205 #define _GLIBCXX_HAVE___BUILTIN_ABS 1
206
207 // Define if the compiler/host combination has __builtin_labs
208 #define _GLIBCXX_HAVE___BUILTIN_LABS 1
209
210 // Define if the compiler/host combination has __builtin_cos
211 #define _GLIBCXX_HAVE___BUILTIN_COS 1
212
213 // Define if the compiler/host combination has __builtin_cosf
214 #define _GLIBCXX_HAVE___BUILTIN_COSF 1
215
216 // Define if the compiler/host combination has __builtin_cosl
217 #define _GLIBCXX_HAVE___BUILTIN_COSL 1
218
219 // Define if the compiler/host combination has __builtin_fabs
220 #define _GLIBCXX_HAVE___BUILTIN_FABS 1
221
222 // Define if the compiler/host combination has __builtin_fabsf
223 #define _GLIBCXX_HAVE___BUILTIN_FABSF 1
224
225 // Define if the compiler/host combination has __builtin_fabsl
226 #define _GLIBCXX_HAVE___BUILTIN_FABSL 1
227
228 // Define if the compiler/host combination has __builtin_sin
229 #define _GLIBCXX_HAVE___BUILTIN_SIN 1
230
231 // Define if the compiler/host combination has __builtin_sinf
232 #define _GLIBCXX_HAVE___BUILTIN_SINF 1
233
234 // Define if the compiler/host combination has __builtin_sinl
235 #define _GLIBCXX_HAVE___BUILTIN_SINL 1
236
237 // Define if the compiler/host combination has __builtin_sqrt
238 #define _GLIBCXX_HAVE___BUILTIN_SQRT 1
239
240 // Define if the compiler/host combination has __builtin_sqrtf
241 #define _GLIBCXX_HAVE___BUILTIN_SQRTF 1
242
243 // Define if the compiler/host combination has __builtin_sqrtl
244 #define _GLIBCXX_HAVE___BUILTIN_SQRTL 1
245
246 // Define if poll is available in <poll.h>.
247 #define _GLIBCXX_HAVE_POLL 1
248
249 // Define if S_ISREG (Posix) is available in <sys/stat.h>.
250 #define _GLIBCXX_HAVE_S_ISREG 1
251
252 // Define if S_IFREG is available in <sys/stat.h>.
253 /* #undef _GLIBCXX_HAVE_S_IFREG */
254
255 // Define if writev is available in <sys/uio.h>.
256 /* #undef _GLIBCXX_HAVE_WRITEV */
257
258 // Define if int64_t is available in <stdint.h>.
259 #define _GLIBCXX_HAVE_INT64_T 1
260
261 // Define if LC_MESSAGES is available in <locale.h>.
262 #define _GLIBCXX_HAVE_LC_MESSAGES 1
263
264 // Define if <float.h> exists.
265 #define _GLIBCXX_HAVE_FLOAT_H 1
266
267 // Define if modf is present in <math.h>
268 /* #undef _GLIBCXX_HAVE_MODF */
269
270
271 /* Define to 1 if you have the `acosf' function. */
272 #define _GLIBCXX_HAVE_ACOSF 1
273
274 /* Define to 1 if you have the `acosl' function. */
275 /* #undef _GLIBCXX_HAVE_ACOSL */
276
277 /* Define to 1 if you have the `asinf' function. */
278 #define _GLIBCXX_HAVE_ASINF 1
279
280 /* Define to 1 if you have the `asinl' function. */
281 /* #undef _GLIBCXX_HAVE_ASINL */
282
283 /* Define to 1 if you have the `atan2f' function. */
284 #define _GLIBCXX_HAVE_ATAN2F 1
285
286 /* Define to 1 if you have the `atan2l' function. */
287 /* #undef _GLIBCXX_HAVE_ATAN2L */
288
289 /* Define to 1 if you have the `atanf' function. */
290 #define _GLIBCXX_HAVE_ATANF 1
291
292 /* Define to 1 if you have the `atanl' function. */
293 /* #undef _GLIBCXX_HAVE_ATANL */
294
295 /* Define to 1 if you have the `btowc' function. */
296 #define _GLIBCXX_HAVE_BTOWC 1
297
298 /* Define to 1 if you have the `ceilf' function. */
299 #define _GLIBCXX_HAVE_CEILF 1
300
301 /* Define to 1 if you have the `ceill' function. */
302 /* #undef _GLIBCXX_HAVE_CEILL */
303
304 /* Define to 1 if you have the `copysign' function. */
305 #define _GLIBCXX_HAVE_COPYSIGN 1
306
307 /* Define to 1 if you have the `copysignf' function. */
308 #define _GLIBCXX_HAVE_COPYSIGNF 1
309
310 /* Define to 1 if you have the `copysignl' function. */
311 /* #undef _GLIBCXX_HAVE_COPYSIGNL */
312
313 /* Define to 1 if you have the `cosf' function. */
314 #define _GLIBCXX_HAVE_COSF 1
315
316 /* Define to 1 if you have the `coshf' function. */
317 #define _GLIBCXX_HAVE_COSHF 1
318
319 /* Define to 1 if you have the `coshl' function. */
320 /* #undef _GLIBCXX_HAVE_COSHL */
321
322 /* Define to 1 if you have the `cosl' function. */
323 /* #undef _GLIBCXX_HAVE_COSL */
324
325 /* Define to 1 if you have the <endian.h> header file. */
326 /* #undef _GLIBCXX_HAVE_ENDIAN_H */
327
328 /* Define to 1 if you have the `expf' function. */
329 #define _GLIBCXX_HAVE_EXPF 1
330
331 /* Define to 1 if you have the `expl' function. */
332 /* #undef _GLIBCXX_HAVE_EXPL */
333
334 /* Define to 1 if you have the `fabsf' function. */
335 #define _GLIBCXX_HAVE_FABSF 1
336
337 /* Define to 1 if you have the `fabsl' function. */
338 /* #undef _GLIBCXX_HAVE_FABSL */
339
340 /* Define to 1 if you have the `fgetwc' function. */
341 #define _GLIBCXX_HAVE_FGETWC 1
342
343 /* Define to 1 if you have the `fgetws' function. */
344 #define _GLIBCXX_HAVE_FGETWS 1
345
346 /* Define to 1 if you have the `finite' function. */
347 #define _GLIBCXX_HAVE_FINITE 1
348
349 /* Define to 1 if you have the `finitef' function. */
350 #define _GLIBCXX_HAVE_FINITEF 1
351
352 /* Define to 1 if you have the `finitel' function. */
353 /* #undef _GLIBCXX_HAVE_FINITEL */
354
355 /* Define to 1 if you have the <float.h> header file. */
356 #define _GLIBCXX_HAVE_FLOAT_H 1
357
358 /* Define to 1 if you have the `floorf' function. */
359 #define _GLIBCXX_HAVE_FLOORF 1
360
361 /* Define to 1 if you have the `floorl' function. */
362 /* #undef _GLIBCXX_HAVE_FLOORL */
363
364 /* Define to 1 if you have the `fmodf' function. */
365 #define _GLIBCXX_HAVE_FMODF 1
366
367 /* Define to 1 if you have the `fmodl' function. */
368 /* #undef _GLIBCXX_HAVE_FMODL */
369
370 /* Define to 1 if you have the `fpclass' function. */
371 /* #undef _GLIBCXX_HAVE_FPCLASS */
372
373 /* Define to 1 if you have the `fputwc' function. */
374 #define _GLIBCXX_HAVE_FPUTWC 1
375
376 /* Define to 1 if you have the `fputws' function. */
377 #define _GLIBCXX_HAVE_FPUTWS 1
378
379 /* Define to 1 if you have the <fp.h> header file. */
380 /* #undef _GLIBCXX_HAVE_FP_H */
381
382 /* Define to 1 if you have the `frexpf' function. */
383 #define _GLIBCXX_HAVE_FREXPF 1
384
385 /* Define to 1 if you have the `frexpl' function. */
386 /* #undef _GLIBCXX_HAVE_FREXPL */
387
388 /* Define to 1 if you have the `fwide' function. */
389 #define _GLIBCXX_HAVE_FWIDE 1
390
391 /* Define to 1 if you have the `fwprintf' function. */
392 #define _GLIBCXX_HAVE_FWPRINTF 1
393
394 /* Define to 1 if you have the `fwscanf' function. */
395 #define _GLIBCXX_HAVE_FWSCANF 1
396
397 /* Define to 1 if you have the <gconv.h> header file. */
398 /* #undef _GLIBCXX_HAVE_GCONV_H */
399
400 /* Define to 1 if you have the `getpagesize' function. */
401 #define _GLIBCXX_HAVE_GETPAGESIZE 1
402
403 /* Define to 1 if you have the `getwc' function. */
404 #define _GLIBCXX_HAVE_GETWC 1
405
406 /* Define to 1 if you have the `getwchar' function. */
407 #define _GLIBCXX_HAVE_GETWCHAR 1
408
409 /* Define to 1 if you have the `hypot' function. */
410 #define _GLIBCXX_HAVE_HYPOT 1
411
412 /* Define to 1 if you have the `hypotf' function. */
413 #define _GLIBCXX_HAVE_HYPOTF 1
414
415 /* Define to 1 if you have the `hypotl' function. */
416 /* #undef _GLIBCXX_HAVE_HYPOTL */
417
418 /* Define to 1 if you have the `iconv' function. */
419 #define _GLIBCXX_HAVE_ICONV 1
420
421 /* Define to 1 if you have the `iconv_close' function. */
422 #define _GLIBCXX_HAVE_ICONV_CLOSE 1
423
424 /* Define to 1 if you have the `iconv_open' function. */
425 #define _GLIBCXX_HAVE_ICONV_OPEN 1
426
427 /* Define to 1 if you have the <ieeefp.h> header file. */
428 #define _GLIBCXX_HAVE_IEEEFP_H 1
429
430 /* Define to 1 if you have the <inttypes.h> header file. */
431 #define _GLIBCXX_HAVE_INTTYPES_H 1
432
433 /* Define to 1 if you have the `isinf' function. */
434 /* #undef _GLIBCXX_HAVE_ISINF */
435
436 /* Define to 1 if you have the `isinff' function. */
437 /* #undef _GLIBCXX_HAVE_ISINFF */
438
439 /* Define to 1 if you have the `isinfl' function. */
440 /* #undef _GLIBCXX_HAVE_ISINFL */
441
442 /* Define to 1 if you have the `isnan' function. */
443 /* #undef _GLIBCXX_HAVE_ISNAN */
444
445 /* Define to 1 if you have the `isnanf' function. */
446 /* #undef _GLIBCXX_HAVE_ISNANF */
447
448 /* Define to 1 if you have the `isnanl' function. */
449 /* #undef _GLIBCXX_HAVE_ISNANL */
450
451 /* Define to 1 if you have the `iswblank' function. */
452 #define _GLIBCXX_HAVE_ISWBLANK 1
453
454 /* Define to 1 if you have the `ldexpf' function. */
455 #define _GLIBCXX_HAVE_LDEXPF 1
456
457 /* Define to 1 if you have the `ldexpl' function. */
458 /* #undef _GLIBCXX_HAVE_LDEXPL */
459
460 /* Define to 1 if you have the <libintl.h> header file. */
461 /* #undef _GLIBCXX_HAVE_LIBINTL_H */
462
463 /* Define to 1 if you have the `m' library (-lm). */
464 #define _GLIBCXX_HAVE_LIBM 1
465
466 /* Only used in build directory testsuite_hooks.h. */
467 #define _GLIBCXX_HAVE_LIMIT_AS 0
468
469 /* Only used in build directory testsuite_hooks.h. */
470 #define _GLIBCXX_HAVE_LIMIT_DATA 1
471
472 /* Only used in build directory testsuite_hooks.h. */
473 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
474
475 /* Only used in build directory testsuite_hooks.h. */
476 #define _GLIBCXX_HAVE_LIMIT_RSS 1
477
478 /* Only used in build directory testsuite_hooks.h. */
479 #define _GLIBCXX_HAVE_LIMIT_VMEM 1
480
481 /* Define to 1 if you have the <locale.h> header file. */
482 #define _GLIBCXX_HAVE_LOCALE_H 1
483
484 /* Define to 1 if you have the `log10f' function. */
485 #define _GLIBCXX_HAVE_LOG10F 1
486
487 /* Define to 1 if you have the `log10l' function. */
488 /* #undef _GLIBCXX_HAVE_LOG10L */
489
490 /* Define to 1 if you have the `logf' function. */
491 #define _GLIBCXX_HAVE_LOGF 1
492
493 /* Define to 1 if you have the `logl' function. */
494 /* #undef _GLIBCXX_HAVE_LOGL */
495
496 /* Define to 1 if you have the <machine/endian.h> header file. */
497 #define _GLIBCXX_HAVE_MACHINE_ENDIAN_H 1
498
499 /* Define to 1 if you have the <machine/param.h> header file. */
500 #define _GLIBCXX_HAVE_MACHINE_PARAM_H 1
501
502 /* Define to 1 if you have the `mbrlen' function. */
503 #define _GLIBCXX_HAVE_MBRLEN 1
504
505 /* Define to 1 if you have the `mbrtowc' function. */
506 #define _GLIBCXX_HAVE_MBRTOWC 1
507
508 /* Define to 1 if you have the `mbsinit' function. */
509 #define _GLIBCXX_HAVE_MBSINIT 1
510
511 /* Define to 1 if you have the `mbsrtowcs' function. */
512 #define _GLIBCXX_HAVE_MBSRTOWCS 1
513
514 /* Define to 1 if you have the <memory.h> header file. */
515 #define _GLIBCXX_HAVE_MEMORY_H 1
516
517 /* Define to 1 if you have a working `mmap' system call. */
518 #define _GLIBCXX_HAVE_MMAP 1
519
520 /* Define to 1 if you have the `modff' function. */
521 #define _GLIBCXX_HAVE_MODFF 1
522
523 /* Define to 1 if you have the `modfl' function. */
524 /* #undef _GLIBCXX_HAVE_MODFL */
525
526 /* Define to 1 if you have the <nan.h> header file. */
527 /* #undef _GLIBCXX_HAVE_NAN_H */
528
529 /* Define to 1 if you have the `nl_langinfo' function. */
530 #define _GLIBCXX_HAVE_NL_LANGINFO 1
531
532 /* Define to 1 if you have the `powf' function. */
533 #define _GLIBCXX_HAVE_POWF 1
534
535 /* Define to 1 if you have the `powl' function. */
536 /* #undef _GLIBCXX_HAVE_POWL */
537
538 /* Define to 1 if you have the `putwc' function. */
539 #define _GLIBCXX_HAVE_PUTWC 1
540
541 /* Define to 1 if you have the `putwchar' function. */
542 #define _GLIBCXX_HAVE_PUTWCHAR 1
543
544 /* Define to 1 if you have the `qfpclass' function. */
545 /* #undef _GLIBCXX_HAVE_QFPCLASS */
546
547 /* Define to 1 if you have the `setenv' function. */
548 #define _GLIBCXX_HAVE_SETENV 1
549
550 /* Define if sigsetjmp is available. */
551 #define _GLIBCXX_HAVE_SIGSETJMP 1
552
553 /* Define to 1 if you have the `sincos' function. */
554 /* #undef _GLIBCXX_HAVE_SINCOS */
555
556 /* Define to 1 if you have the `sincosf' function. */
557 /* #undef _GLIBCXX_HAVE_SINCOSF */
558
559 /* Define to 1 if you have the `sincosl' function. */
560 /* #undef _GLIBCXX_HAVE_SINCOSL */
561
562 /* Define to 1 if you have the `sinf' function. */
563 #define _GLIBCXX_HAVE_SINF 1
564
565 /* Define to 1 if you have the `sinhf' function. */
566 #define _GLIBCXX_HAVE_SINHF 1
567
568 /* Define to 1 if you have the `sinhl' function. */
569 /* #undef _GLIBCXX_HAVE_SINHL */
570
571 /* Define to 1 if you have the `sinl' function. */
572 /* #undef _GLIBCXX_HAVE_SINL */
573
574 /* Define to 1 if you have the `sqrtf' function. */
575 #define _GLIBCXX_HAVE_SQRTF 1
576
577 /* Define to 1 if you have the `sqrtl' function. */
578 /* #undef _GLIBCXX_HAVE_SQRTL */
579
580 /* Define to 1 if you have the <stdint.h> header file. */
581 #define _GLIBCXX_HAVE_STDINT_H 1
582
583 /* Define to 1 if you have the <stdlib.h> header file. */
584 #define _GLIBCXX_HAVE_STDLIB_H 1
585
586 /* Define to 1 if you have the <strings.h> header file. */
587 #define _GLIBCXX_HAVE_STRINGS_H 1
588
589 /* Define to 1 if you have the <string.h> header file. */
590 #define _GLIBCXX_HAVE_STRING_H 1
591
592 /* Define to 1 if you have the `strtof' function. */
593 /* #undef _GLIBCXX_HAVE_STRTOF */
594
595 /* Define to 1 if you have the `strtold' function. */
596 /* #undef _GLIBCXX_HAVE_STRTOLD */
597
598 /* Define to 1 if you have the `swprintf' function. */
599 #define _GLIBCXX_HAVE_SWPRINTF 1
600
601 /* Define to 1 if you have the `swscanf' function. */
602 #define _GLIBCXX_HAVE_SWSCANF 1
603
604 /* Define to 1 if you have the <sys/filio.h> header file. */
605 #define _GLIBCXX_HAVE_SYS_FILIO_H 1
606
607 /* Define to 1 if you have the <sys/ioctl.h> header file. */
608 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
609
610 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
611 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
612
613 /* Define to 1 if you have the <sys/machine.h> header file. */
614 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
615
616 /* Define to 1 if you have the <sys/param.h> header file. */
617 /* #undef _GLIBCXX_HAVE_SYS_PARAM_H */
618
619 /* Define to 1 if you have the <sys/resource.h> header file. */
620 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
621
622 /* Define to 1 if you have the <sys/stat.h> header file. */
623 #define _GLIBCXX_HAVE_SYS_STAT_H 1
624
625 /* Define to 1 if you have the <sys/time.h> header file. */
626 #define _GLIBCXX_HAVE_SYS_TIME_H 1
627
628 /* Define to 1 if you have the <sys/types.h> header file. */
629 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
630
631 /* Define to 1 if you have the <sys/uio.h> header file. */
632 #define _GLIBCXX_HAVE_SYS_UIO_H 1
633
634 /* Define to 1 if you have the `tanf' function. */
635 #define _GLIBCXX_HAVE_TANF 1
636
637 /* Define to 1 if you have the `tanhf' function. */
638 #define _GLIBCXX_HAVE_TANHF 1
639
640 /* Define to 1 if you have the `tanhl' function. */
641 /* #undef _GLIBCXX_HAVE_TANHL */
642
643 /* Define to 1 if you have the `tanl' function. */
644 /* #undef _GLIBCXX_HAVE_TANL */
645
646 /* Define to 1 if you have the `ungetwc' function. */
647 #define _GLIBCXX_HAVE_UNGETWC 1
648
649 /* Define to 1 if you have the <unistd.h> header file. */
650 #define _GLIBCXX_HAVE_UNISTD_H 1
651
652 /* Define to 1 if you have the `vfwprintf' function. */
653 #define _GLIBCXX_HAVE_VFWPRINTF 1
654
655 /* Define to 1 if you have the `vfwscanf' function. */
656 #define _GLIBCXX_HAVE_VFWSCANF 1
657
658 /* Define to 1 if you have the `vswprintf' function. */
659 #define _GLIBCXX_HAVE_VSWPRINTF 1
660
661 /* Define to 1 if you have the `vswscanf' function. */
662 #define _GLIBCXX_HAVE_VSWSCANF 1
663
664 /* Define to 1 if you have the `vwprintf' function. */
665 #define _GLIBCXX_HAVE_VWPRINTF 1
666
667 /* Define to 1 if you have the `vwscanf' function. */
668 #define _GLIBCXX_HAVE_VWSCANF 1
669
670 /* Define to 1 if you have the <wchar.h> header file. */
671 #define _GLIBCXX_HAVE_WCHAR_H 1
672
673 /* Define to 1 if you have the `wcrtomb' function. */
674 #define _GLIBCXX_HAVE_WCRTOMB 1
675
676 /* Define to 1 if you have the `wcscat' function. */
677 #define _GLIBCXX_HAVE_WCSCAT 1
678
679 /* Define to 1 if you have the `wcschr' function. */
680 #define _GLIBCXX_HAVE_WCSCHR 1
681
682 /* Define to 1 if you have the `wcscmp' function. */
683 #define _GLIBCXX_HAVE_WCSCMP 1
684
685 /* Define to 1 if you have the `wcscoll' function. */
686 #define _GLIBCXX_HAVE_WCSCOLL 1
687
688 /* Define to 1 if you have the `wcscpy' function. */
689 #define _GLIBCXX_HAVE_WCSCPY 1
690
691 /* Define to 1 if you have the `wcscspn' function. */
692 #define _GLIBCXX_HAVE_WCSCSPN 1
693
694 /* Define to 1 if you have the `wcsftime' function. */
695 #define _GLIBCXX_HAVE_WCSFTIME 1
696
697 /* Define to 1 if you have the `wcslen' function. */
698 #define _GLIBCXX_HAVE_WCSLEN 1
699
700 /* Define to 1 if you have the `wcsncat' function. */
701 #define _GLIBCXX_HAVE_WCSNCAT 1
702
703 /* Define to 1 if you have the `wcsncmp' function. */
704 #define _GLIBCXX_HAVE_WCSNCMP 1
705
706 /* Define to 1 if you have the `wcsncpy' function. */
707 #define _GLIBCXX_HAVE_WCSNCPY 1
708
709 /* Define to 1 if you have the `wcspbrk' function. */
710 #define _GLIBCXX_HAVE_WCSPBRK 1
711
712 /* Define to 1 if you have the `wcsrchr' function. */
713 #define _GLIBCXX_HAVE_WCSRCHR 1
714
715 /* Define to 1 if you have the `wcsrtombs' function. */
716 #define _GLIBCXX_HAVE_WCSRTOMBS 1
717
718 /* Define to 1 if you have the `wcsspn' function. */
719 #define _GLIBCXX_HAVE_WCSSPN 1
720
721 /* Define to 1 if you have the `wcsstr' function. */
722 #define _GLIBCXX_HAVE_WCSSTR 1
723
724 /* Define to 1 if you have the `wcstod' function. */
725 #define _GLIBCXX_HAVE_WCSTOD 1
726
727 /* Define to 1 if you have the `wcstof' function. */
728 /* #undef _GLIBCXX_HAVE_WCSTOF */
729
730 /* Define to 1 if you have the `wcstok' function. */
731 /* #undef _GLIBCXX_HAVE_WCSTOK */
732
733 /* Define to 1 if you have the `wcstol' function. */
734 #define _GLIBCXX_HAVE_WCSTOL 1
735
736 /* Define to 1 if you have the `wcstoul' function. */
737 #define _GLIBCXX_HAVE_WCSTOUL 1
738
739 /* Define to 1 if you have the `wcsxfrm' function. */
740 #define _GLIBCXX_HAVE_WCSXFRM 1
741
742 /* Define to 1 if you have the `wctob' function. */
743 #define _GLIBCXX_HAVE_WCTOB 1
744
745 /* Define to 1 if you have the <wctype.h> header file. */
746 #define _GLIBCXX_HAVE_WCTYPE_H 1
747
748 /* Define to 1 if you have the `wmemchr' function. */
749 #define _GLIBCXX_HAVE_WMEMCHR 1
750
751 /* Define to 1 if you have the `wmemcmp' function. */
752 #define _GLIBCXX_HAVE_WMEMCMP 1
753
754 /* Define to 1 if you have the `wmemcpy' function. */
755 #define _GLIBCXX_HAVE_WMEMCPY 1
756
757 /* Define to 1 if you have the `wmemmove' function. */
758 #define _GLIBCXX_HAVE_WMEMMOVE 1
759
760 /* Define to 1 if you have the `wmemset' function. */
761 #define _GLIBCXX_HAVE_WMEMSET 1
762
763 /* Define to 1 if you have the `wprintf' function. */
764 #define _GLIBCXX_HAVE_WPRINTF 1
765
766 /* Define to 1 if you have the `wscanf' function. */
767 #define _GLIBCXX_HAVE_WSCANF 1
768
769 /* Define to 1 if you have the `_acosf' function. */
770 /* #undef _GLIBCXX_HAVE__ACOSF */
771
772 /* Define to 1 if you have the `_acosl' function. */
773 /* #undef _GLIBCXX_HAVE__ACOSL */
774
775 /* Define to 1 if you have the `_asinf' function. */
776 /* #undef _GLIBCXX_HAVE__ASINF */
777
778 /* Define to 1 if you have the `_asinl' function. */
779 /* #undef _GLIBCXX_HAVE__ASINL */
780
781 /* Define to 1 if you have the `_atan2f' function. */
782 /* #undef _GLIBCXX_HAVE__ATAN2F */
783
784 /* Define to 1 if you have the `_atan2l' function. */
785 /* #undef _GLIBCXX_HAVE__ATAN2L */
786
787 /* Define to 1 if you have the `_atanf' function. */
788 /* #undef _GLIBCXX_HAVE__ATANF */
789
790 /* Define to 1 if you have the `_atanl' function. */
791 /* #undef _GLIBCXX_HAVE__ATANL */
792
793 /* Define to 1 if you have the `_ceilf' function. */
794 /* #undef _GLIBCXX_HAVE__CEILF */
795
796 /* Define to 1 if you have the `_ceill' function. */
797 /* #undef _GLIBCXX_HAVE__CEILL */
798
799 /* Define to 1 if you have the `_copysign' function. */
800 /* #undef _GLIBCXX_HAVE__COPYSIGN */
801
802 /* Define to 1 if you have the `_copysignl' function. */
803 /* #undef _GLIBCXX_HAVE__COPYSIGNL */
804
805 /* Define to 1 if you have the `_cosf' function. */
806 /* #undef _GLIBCXX_HAVE__COSF */
807
808 /* Define to 1 if you have the `_coshf' function. */
809 /* #undef _GLIBCXX_HAVE__COSHF */
810
811 /* Define to 1 if you have the `_coshl' function. */
812 /* #undef _GLIBCXX_HAVE__COSHL */
813
814 /* Define to 1 if you have the `_cosl' function. */
815 /* #undef _GLIBCXX_HAVE__COSL */
816
817 /* Define to 1 if you have the `_expf' function. */
818 /* #undef _GLIBCXX_HAVE__EXPF */
819
820 /* Define to 1 if you have the `_expl' function. */
821 /* #undef _GLIBCXX_HAVE__EXPL */
822
823 /* Define to 1 if you have the `_fabsf' function. */
824 /* #undef _GLIBCXX_HAVE__FABSF */
825
826 /* Define to 1 if you have the `_fabsl' function. */
827 /* #undef _GLIBCXX_HAVE__FABSL */
828
829 /* Define to 1 if you have the `_finite' function. */
830 /* #undef _GLIBCXX_HAVE__FINITE */
831
832 /* Define to 1 if you have the `_finitef' function. */
833 /* #undef _GLIBCXX_HAVE__FINITEF */
834
835 /* Define to 1 if you have the `_finitel' function. */
836 /* #undef _GLIBCXX_HAVE__FINITEL */
837
838 /* Define to 1 if you have the `_floorf' function. */
839 /* #undef _GLIBCXX_HAVE__FLOORF */
840
841 /* Define to 1 if you have the `_floorl' function. */
842 /* #undef _GLIBCXX_HAVE__FLOORL */
843
844 /* Define to 1 if you have the `_fmodf' function. */
845 /* #undef _GLIBCXX_HAVE__FMODF */
846
847 /* Define to 1 if you have the `_fmodl' function. */
848 /* #undef _GLIBCXX_HAVE__FMODL */
849
850 /* Define to 1 if you have the `_fpclass' function. */
851 /* #undef _GLIBCXX_HAVE__FPCLASS */
852
853 /* Define to 1 if you have the `_frexpf' function. */
854 /* #undef _GLIBCXX_HAVE__FREXPF */
855
856 /* Define to 1 if you have the `_frexpl' function. */
857 /* #undef _GLIBCXX_HAVE__FREXPL */
858
859 /* Define to 1 if you have the `_hypot' function. */
860 /* #undef _GLIBCXX_HAVE__HYPOT */
861
862 /* Define to 1 if you have the `_hypotf' function. */
863 /* #undef _GLIBCXX_HAVE__HYPOTF */
864
865 /* Define to 1 if you have the `_hypotl' function. */
866 /* #undef _GLIBCXX_HAVE__HYPOTL */
867
868 /* Define to 1 if you have the `_isinf' function. */
869 /* #undef _GLIBCXX_HAVE__ISINF */
870
871 /* Define to 1 if you have the `_isinff' function. */
872 /* #undef _GLIBCXX_HAVE__ISINFF */
873
874 /* Define to 1 if you have the `_isinfl' function. */
875 /* #undef _GLIBCXX_HAVE__ISINFL */
876
877 /* Define to 1 if you have the `_isnan' function. */
878 /* #undef _GLIBCXX_HAVE__ISNAN */
879
880 /* Define to 1 if you have the `_isnanf' function. */
881 /* #undef _GLIBCXX_HAVE__ISNANF */
882
883 /* Define to 1 if you have the `_isnanl' function. */
884 /* #undef _GLIBCXX_HAVE__ISNANL */
885
886 /* Define to 1 if you have the `_ldexpf' function. */
887 /* #undef _GLIBCXX_HAVE__LDEXPF */
888
889 /* Define to 1 if you have the `_ldexpl' function. */
890 /* #undef _GLIBCXX_HAVE__LDEXPL */
891
892 /* Define to 1 if you have the `_log10f' function. */
893 /* #undef _GLIBCXX_HAVE__LOG10F */
894
895 /* Define to 1 if you have the `_log10l' function. */
896 /* #undef _GLIBCXX_HAVE__LOG10L */
897
898 /* Define to 1 if you have the `_logf' function. */
899 /* #undef _GLIBCXX_HAVE__LOGF */
900
901 /* Define to 1 if you have the `_logl' function. */
902 /* #undef _GLIBCXX_HAVE__LOGL */
903
904 /* Define to 1 if you have the `_modff' function. */
905 /* #undef _GLIBCXX_HAVE__MODFF */
906
907 /* Define to 1 if you have the `_modfl' function. */
908 /* #undef _GLIBCXX_HAVE__MODFL */
909
910 /* Define to 1 if you have the `_powf' function. */
911 /* #undef _GLIBCXX_HAVE__POWF */
912
913 /* Define to 1 if you have the `_powl' function. */
914 /* #undef _GLIBCXX_HAVE__POWL */
915
916 /* Define to 1 if you have the `_qfpclass' function. */
917 /* #undef _GLIBCXX_HAVE__QFPCLASS */
918
919 /* Define to 1 if you have the `_sincos' function. */
920 /* #undef _GLIBCXX_HAVE__SINCOS */
921
922 /* Define to 1 if you have the `_sincosf' function. */
923 /* #undef _GLIBCXX_HAVE__SINCOSF */
924
925 /* Define to 1 if you have the `_sincosl' function. */
926 /* #undef _GLIBCXX_HAVE__SINCOSL */
927
928 /* Define to 1 if you have the `_sinf' function. */
929 /* #undef _GLIBCXX_HAVE__SINF */
930
931 /* Define to 1 if you have the `_sinhf' function. */
932 /* #undef _GLIBCXX_HAVE__SINHF */
933
934 /* Define to 1 if you have the `_sinhl' function. */
935 /* #undef _GLIBCXX_HAVE__SINHL */
936
937 /* Define to 1 if you have the `_sinl' function. */
938 /* #undef _GLIBCXX_HAVE__SINL */
939
940 /* Define to 1 if you have the `_sqrtf' function. */
941 /* #undef _GLIBCXX_HAVE__SQRTF */
942
943 /* Define to 1 if you have the `_sqrtl' function. */
944 /* #undef _GLIBCXX_HAVE__SQRTL */
945
946 /* Define to 1 if you have the `_tanf' function. */
947 /* #undef _GLIBCXX_HAVE__TANF */
948
949 /* Define to 1 if you have the `_tanhf' function. */
950 /* #undef _GLIBCXX_HAVE__TANHF */
951
952 /* Define to 1 if you have the `_tanhl' function. */
953 /* #undef _GLIBCXX_HAVE__TANHL */
954
955 /* Define to 1 if you have the `_tanl' function. */
956 /* #undef _GLIBCXX_HAVE__TANL */
957
958 /* Define to 1 if you have the `__signbit' function. */
959 /* #undef _GLIBCXX_HAVE___SIGNBIT */
960
961 /* Define to 1 if you have the `__signbitf' function. */
962 #define _GLIBCXX_HAVE___SIGNBITF 1
963
964 /* Define to 1 if you have the `__signbitl' function. */
965 /* #undef _GLIBCXX_HAVE___SIGNBITL */
966
967 /* Define to the address where bug reports for this package should be sent. */
968 #define _GLIBCXX_PACKAGE_BUGREPORT ""
969
970 /* Define to the full name of this package. */
971 #define _GLIBCXX_PACKAGE_NAME "package-unused"
972
973 /* Define to the full name and version of this package. */
974 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
975
976 /* Define to the one symbol short name of this package. */
977 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
978
979 /* Define to the version of this package. */
980 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
981
982 /* Define to 1 if you have the ANSI C header files. */
983 #define STDC_HEADERS 1
984
985 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
986 #define _GLIBCXX_HOSTED 1
987
988 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
989 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
990 //
991 // Systems that have certain non-standard functions prefixed with an
992 // underscore, we'll handle those here. Must come after config.h.in.
993 //
994 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
995 # define _GLIBCXX_HAVE_ISNAN 1
996 # define isnan _isnan
997 #endif
998
999 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
1000 # define _GLIBCXX_HAVE_ISNANF 1
1001 # define isnanf _isnanf
1002 #endif
1003
1004 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
1005 # define _GLIBCXX_HAVE_ISNANL 1
1006 # define isnanl _isnanl
1007 #endif
1008
1009 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
1010 # define _GLIBCXX_HAVE_ISINF 1
1011 # define isinf _isinf
1012 #endif
1013
1014 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
1015 # define _GLIBCXX_HAVE_ISINFF 1
1016 # define isinff _isinff
1017 #endif
1018
1019 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
1020 # define _GLIBCXX_HAVE_ISINFL 1
1021 # define isinfl _isinfl
1022 #endif
1023
1024 #if defined (_GLIBCXX_HAVE__COPYSIGN) && ! defined (_GLIBCXX_HAVE_COPYSIGN)
1025 # define _GLIBCXX_HAVE_COPYSIGN 1
1026 # define copysign _copysign
1027 #endif
1028
1029 #if defined (_GLIBCXX_HAVE__COPYSIGNL) && ! defined (_GLIBCXX_HAVE_COPYSIGNL)
1030 # define _GLIBCXX_HAVE_COPYSIGNL 1
1031 # define copysignl _copysignl
1032 #endif
1033
1034 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
1035 # define _GLIBCXX_HAVE_COSF 1
1036 # define cosf _cosf
1037 #endif
1038
1039 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
1040 # define _GLIBCXX_HAVE_ACOSF 1
1041 # define acosf _acosf
1042 #endif
1043
1044 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
1045 # define _GLIBCXX_HAVE_ACOSL 1
1046 # define acosl _acosl
1047 #endif
1048
1049 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
1050 # define _GLIBCXX_HAVE_ASINF 1
1051 # define asinf _asinf
1052 #endif
1053
1054 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
1055 # define _GLIBCXX_HAVE_ASINL 1
1056 # define asinl _asinl
1057 #endif
1058
1059 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
1060 # define _GLIBCXX_HAVE_ATANF 1
1061 # define atanf _atanf
1062 #endif
1063
1064 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
1065 # define _GLIBCXX_HAVE_ATANL 1
1066 # define atanl _atanl
1067 #endif
1068
1069 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
1070 # define _GLIBCXX_HAVE_CEILF 1
1071 # define aceil _ceilf
1072 #endif
1073
1074 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
1075 # define _GLIBCXX_HAVE_CEILL 1
1076 # define aceil _ceill
1077 #endif
1078
1079 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
1080 # define _GLIBCXX_HAVE_COSHF 1
1081 # define coshf _coshf
1082 #endif
1083
1084 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
1085 # define _GLIBCXX_HAVE_COSL 1
1086 # define cosl _cosl
1087 #endif
1088
1089 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
1090 # define _GLIBCXX_HAVE_LOGF 1
1091 # define logf _logf
1092 #endif
1093
1094 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
1095 # define _GLIBCXX_HAVE_COSHL 1
1096 # define coshl _coshl
1097 #endif
1098
1099 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
1100 # define _GLIBCXX_HAVE_EXPF 1
1101 # define expf _expf
1102 #endif
1103
1104 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
1105 # define _GLIBCXX_HAVE_EXPL 1
1106 # define expl _expl
1107 #endif
1108
1109 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
1110 # define _GLIBCXX_HAVE_FABSF 1
1111 # define fabsf _fabsf
1112 #endif
1113
1114 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
1115 # define _GLIBCXX_HAVE_FABSL 1
1116 # define fabsl _fabsl
1117 #endif
1118
1119 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
1120 # define _GLIBCXX_HAVE_FLOORF 1
1121 # define floorf _floorf
1122 #endif
1123
1124 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
1125 # define _GLIBCXX_HAVE_FLOORL 1
1126 # define floorl _floorl
1127 #endif
1128
1129 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
1130 # define _GLIBCXX_HAVE_FMODF 1
1131 # define fmodf _fmodf
1132 #endif
1133
1134 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
1135 # define _GLIBCXX_HAVE_FMODL 1
1136 # define fmodl _fmodl
1137 #endif
1138
1139 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
1140 # define _GLIBCXX_HAVE_FREXPF 1
1141 # define frexpf _frexpf
1142 #endif
1143
1144 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
1145 # define _GLIBCXX_HAVE_FREXPL 1
1146 # define frexpl _frexpl
1147 #endif
1148
1149 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
1150 # define _GLIBCXX_HAVE_LDEXPF 1
1151 # define ldexpf _ldexpf
1152 #endif
1153
1154 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
1155 # define _GLIBCXX_HAVE_LDEXPL 1
1156 # define ldexpl _ldexpl
1157 #endif
1158
1159 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
1160 # define _GLIBCXX_HAVE_LOG10F 1
1161 # define log10f _log10f
1162 #endif
1163
1164 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
1165 # define _GLIBCXX_HAVE_LOGL 1
1166 # define logl _logl
1167 #endif
1168
1169 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
1170 # define _GLIBCXX_HAVE_POWF 1
1171 # define powf _powf
1172 #endif
1173
1174 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
1175 # define _GLIBCXX_HAVE_LOG10L 1
1176 # define log10l _log10l
1177 #endif
1178
1179 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
1180 # define _GLIBCXX_HAVE_MODF 1
1181 # define modf _modf
1182 #endif
1183
1184 #if defined (_GLIBCXX_HAVE__MODL) && ! defined (_GLIBCXX_HAVE_MODL)
1185 # define _GLIBCXX_HAVE_MODL 1
1186 # define modl _modl
1187 #endif
1188
1189 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
1190 # define _GLIBCXX_HAVE_SINF 1
1191 # define sinf _sinf
1192 #endif
1193
1194 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
1195 # define _GLIBCXX_HAVE_POWL 1
1196 # define powl _powl
1197 #endif
1198
1199 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
1200 # define _GLIBCXX_HAVE_SINHF 1
1201 # define sinhf _sinhf
1202 #endif
1203
1204 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
1205 # define _GLIBCXX_HAVE_SINL 1
1206 # define sinl _sinl
1207 #endif
1208
1209 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
1210 # define _GLIBCXX_HAVE_SQRTF 1
1211 # define sqrtf _sqrtf
1212 #endif
1213
1214 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
1215 # define _GLIBCXX_HAVE_SINHL 1
1216 # define sinhl _sinhl
1217 #endif
1218
1219 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
1220 # define _GLIBCXX_HAVE_TANF 1
1221 # define tanf _tanf
1222 #endif
1223
1224 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
1225 # define _GLIBCXX_HAVE_SQRTL 1
1226 # define sqrtl _sqrtl
1227 #endif
1228
1229 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
1230 # define _GLIBCXX_HAVE_TANHF 1
1231 # define tanhf _tanhf
1232 #endif
1233
1234 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
1235 # define _GLIBCXX_HAVE_TANF 1
1236 # define tanf _tanf
1237 #endif
1238
1239 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
1240 # define _GLIBCXX_HAVE_STRTOF 1
1241 # define strtof _strtof
1242 #endif
1243
1244 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
1245 # define _GLIBCXX_HAVE_TANHL 1
1246 # define tanhl _tanhl
1247 #endif
1248
1249 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
1250 # define _GLIBCXX_HAVE_STRTOLD 1
1251 # define strtold _strtold
1252 #endif
1253
1254 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
1255 # define _GLIBCXX_HAVE_SINCOS 1
1256 # define sincos _sincos
1257 #endif
1258
1259 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
1260 # define _GLIBCXX_HAVE_SINCOSF 1
1261 # define sincosf _sincosf
1262 #endif
1263
1264 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
1265 # define _GLIBCXX_HAVE_SINCOSL 1
1266 # define sincosl _sincosl
1267 #endif
1268
1269 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
1270 # define _GLIBCXX_HAVE_FINITE 1
1271 # define finite _finite
1272 #endif
1273
1274 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
1275 # define _GLIBCXX_HAVE_FINITEF 1
1276 # define finitef _finitef
1277 #endif
1278
1279 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
1280 # define _GLIBCXX_HAVE_FINITEL 1
1281 # define finitel _finitel
1282 #endif
1283
1284 #if defined (_GLIBCXX_HAVE__QFINITE) && ! defined (_GLIBCXX_HAVE_QFINITE)
1285 # define _GLIBCXX_HAVE_QFINITE 1
1286 # define qfinite _qfinite
1287 #endif
1288
1289 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
1290 # define _GLIBCXX_HAVE_FPCLASS 1
1291 # define fpclass _fpclass
1292 #endif
1293
1294 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
1295 # define _GLIBCXX_HAVE_QFPCLASS 1
1296 # define qfpclass _qfpclass
1297 #endif
1298
1299 #endif // _CXXCONFIG_